home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / gfx / 3d / irit50src.lha / irit5 / docs / cexample / makefile.unx < prev    next >
Encoding:
Makefile  |  1995-02-12  |  527 b   |  22 lines

  1. IRIT_DIR = /mach/isaac/misc2/gershon/irit/indy
  2.  
  3. include $(IRIT_DIR)/makeflag.unx
  4.  
  5. All: polyarea polygons transfrm lst_sqrs
  6.  
  7. OBJS1    = polyarea.o
  8. polyarea: $(OBJS1)
  9.     $(CC) $(CFLAGS) -o polyarea $(OBJS1) $(LIBS) -lm $(MORELIBS)
  10.  
  11. OBJS2    = polygons.o
  12. polygons: $(OBJS2)
  13.     $(CC) $(CFLAGS) -o polygons $(OBJS2) $(LIBS) -lm $(MORELIBS)
  14.  
  15. OBJS3    = transfrm.o
  16. transfrm: $(OBJS3)
  17.     $(CC) $(CFLAGS) -o transfrm $(OBJS3) $(LIBS) -lm $(MORELIBS)
  18.  
  19. OBJS4    = lst_sqrs.o
  20. lst_sqrs: $(OBJS4)
  21.     $(CC) $(CFLAGS) -o lst_sqrs $(OBJS4) $(LIBS) -lm $(MORELIBS)
  22.